body{
    font-family: poppins;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container{
    display: flex;
    justify-content: center;
    height: auto;
    align-items: center;
    text-align: center;
}
.formcontainer{
    justify-content: center;
    max-width: 100%;
    border-radius: 10px;
    height: 80vh;
    padding: 10px;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    padding-bottom: 80px;

}   
form input {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid gray;   
}
form button {
    padding: 10px;
    background-color: green;
    color: white;
    border-radius: 7px;
    cursor: pointer;
    border: none;
    margin-top: 10px;
}
.adddiv{
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
    align-items: center;
}
.adddiv button{
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: green;
    color: white;
    border-radius: 20px;
    border: none;
    transition: 0.8s;
}
.adddiv button:hover {
    background-color: rgb(2, 58, 2);
    cursor: pointer;
    transition: 0.8s;
}
table {
    width: 100%;
    margin-top: 20px;
    text-align: center;
}
table button{
    cursor: pointer;
    padding: 5px;
    border-radius: 20px;
    border: none;
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 10px;
    padding-bottom: 10px;
}
table .edit{
    background-color: blue;
    color: white;
    border: none;
    transition: 0.8s;
}
table .edit:hover{
    background-color: rgb(3, 3, 111);
    transition: 0.8s;
}
table .delete{
    background-color: red;
    color: white;
    border: none;
    transition: 0.8s;
}
table .delete:hover{
    background-color: rgb(120, 2, 2);
    transition: 0.8s;
}
.updateform, .createform{
    display: none;
    width: 100%;
}
th, td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #DDD;
  }
.complete, .uncheck{
    background-color: gray;
    color: white;
    transition: 0.8s;
}
.complete:hover{
    background-color: rgb(49, 49, 49);
    transition: 0.8s;
}  
.uncheck:hover{
    background-color: rgb(49, 49, 49);
    transition: 0.8s;
}
.filt button{
    background-color: rgb(0, 107, 128);
}
.filt{
    display: flex;
    gap: 5px;
    
}
.complete{
    margin-top: 6px;
}
.delete{
    margin-top: 6px;
}
tbody{
    max-width: 2px;
}